/* --- ZÁKLADNÍ NASTAVENÍ --- */
body,
#bg {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(135deg, #495686, #0b0f16);
  font-family: "Questrial", sans-serif;
  color: white;
}

/* --- LOGO A ANIMACE --- */
.logo {
  width: 60px;
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
}

#logo-svg {
  opacity: 0;
  transform: rotate(-90deg) scale(0.95);
  transition: all 0.5s ease;
}

#logo-svg.visible {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.draw {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 1.6s ease;
}

#logo-svg.visible .draw {
  stroke-dashoffset: 0;
}
.dot {
  opacity: 0;
  transition: opacity 0.4s ease;
}
#logo-svg.visible .dot {
  opacity: 1;
  transition-delay: 1.3s;
}

/* --- NAVIGACE (DESKTOP) --- */
.horni-lista {
  position: fixed;
  top: 10px;
  width: 100%;
  text-align: center;
  z-index: 100;
}

#menu {
  display: flex;
  justify-content: center;
  gap: 20px;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.produkt,
.team {
  color: white;
  text-decoration: none;
  font-size: 18px;
  border: 2px solid white;
  padding: 8px 20px;
  border-radius: 999px;
  transition: 0.3s;
}

/* --- MOBILNÍ MENU --- */
.navbar {
  position: fixed;
  top: 0;
  right: 0;
  height: 56px;
  padding: 0 16px;
  display: none;
  z-index: 1001;
}

.hamburger {
  width: 38px;
  height: 27px;
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 2px;
  transition: 0.3s;
}

.mobile-menu {
  position: fixed;
  top: 56px;
  right: 20px;
  width: 55%;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  transform: translateY(-150%);
  opacity: 0;
  transition: 0.5s;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
}

.pilulka {
  color: white;
  text-decoration: none;
  padding: 15px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin: 5px;
  border-radius: 50px;
}

/* --- TYPOGRAFIE --- */
.nadpis {
  font-size: 60px;
  text-align: center;
  font-family: "Archivo Black", sans-serif;
  margin: 50px 0 20px;
}

.jmena {
  font-size: 26px;
  margin: 0 0 10px 0;
}

.p-text1 {
  font-size: 18px;
  line-height: 1.5;
  text-align: justify;
}

/* --- TEAM SECTION A BOXY --- */
.team-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
}

.box-team {
  width: 550px;
  min-height: 350px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  overflow: hidden; /* Důležité pro ořez fotky v rohu */
}

.foto-sekce {
  width: 40%;
  height: 100%;
}

.tymova-fotka-vyska {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.obsah-sekce {
  width: 60%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.linka {
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
  margin-bottom: 15px;
}

/* --- RESPONSIVITA --- */
@media (max-width: 768px) {
  .navbar {
    display: flex;
  }
  #menu {
    display: none;
  }

  .box-team {
    width: 320px;
    flex-direction: column;
    height: auto;
  }

  .foto-sekce,
  .obsah-sekce {
    width: 100%;
  }
  .foto-sekce {
    height: 300px;
  }

  .nadpis {
    font-size: 45px;
  }
  .logo {
    width: 45px;
  }
}
